home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / POV-Ray 3.0.2 / src / POV-Ray.make - with Undo < prev    next >
Encoding:
Text File  |  1997-02-11  |  26.6 KB  |  763 lines  |  [TEXT/MPS ]

  1. ######################################################################################
  2. ######################################################################################
  3. #
  4. # IMPORTANT! This file must be named "POV-Ray.make" to be able to build it with
  5. # the MPW Shell Build-Menu commands!
  6. #
  7. ######################################################################################
  8. ######################################################################################
  9.  
  10. ######################################################################################
  11. #
  12. #   File:       POV-Ray.make
  13. #   Target:     POV-Ray
  14. #   Created:    Wednesday, September 11, 1996 09:52:22 PM
  15. #
  16. #   INTERFACES:       Universal Interfaces 2.1.4
  17. #   LIBRARIES:        Included with Universal Interfaces 2.1.4
  18. #   COMPILING WITH:   MrC C Compiler 2.0f1c0
  19. #   LINKING WITH:     PPCLink
  20. #
  21. #    Makefile created by Thorsten Froehlich, CIS 106325,3677
  22. #
  23. ######################################################################################
  24. #
  25. # This file has been created with MPW Shell contained on E.T.O. 22.
  26. # All used files are contained on the E.T.O. CD. No prerelease files have been used!
  27. #
  28. # Building Notes:
  29. # Set your directory to the directory that contains "SOUCRE" and "MacSource".
  30. # After it is compiled & linked you will have to copy the resources into it!!!
  31. # Remember to set the memory defaults, too!
  32. #
  33. # BUGS: I don't know if PNG-files work.
  34. #
  35. # Of course the POV-Ray created with this makefile will be an Unofficial Version.
  36. # All I can tell you is that it worked with my configuration.
  37. # I will provide no support and I am not responsible for any data lost by use
  38. # of this file or the created program!
  39. #
  40. ######################################################################################
  41.  
  42. ######################################################################################
  43. #
  44. # The following changes have to be made to compile and link POV-Pay 3.0 with MrC!!!
  45. #
  46. ######################################################################################
  47.  
  48. ###
  49. ### To compile POV-Ray 3.01 you have to update the MacSource files:
  50. ### ==============================================================
  51. ###
  52. ### In "Config.h"
  53. ###
  54. ### Add this below the line "// >>> Add new compilers here! <<<"
  55. ###
  56. ###   #if defined(__MRC__)
  57. ###   // MrC (New MPW/ETO PowerPC Compiler)
  58. ###   #define COMPILER_VER    ".MacMrC"
  59. ###   #endif // COMPILER_VER
  60. ###
  61. ### Add this below the line "#include "PrePost.h" (near the end of the file):
  62. ###
  63. #include "Stdio_p2w.h"
  64. ###
  65. ### ---------------------------
  66. ### In "Pov.c"
  67. ###
  68. ### Add this line below "/*==== Global variables (external scope) ====*/":
  69. ###
  70. ###   QDGlobals qd;
  71. ###
  72. ### Replace:
  73. #include <OSEvents.h>
  74. ### with:
  75. #include <Events.h>
  76. ###
  77. ### Replace:
  78. #include <FragLoad.h>
  79. ### with:
  80. #include <CodeFragments.h>
  81. ###
  82. ### ---------------------------
  83. ### In "PrePost.c"
  84. ###
  85. ### Add this below the line "#define PREPOST_C"
  86. ###
  87. #include "AppPrefs.h"
  88. ###
  89. ### ---------------------------
  90. ###
  91. ### To compile POV-Ray 3.01 you have to change the SOURCE files:
  92. ### ===========================================================
  93. ###
  94. ### ---------------------------
  95. ### 
  96. ### In "OPTIN.C"
  97. ###
  98. ### Replace the definition of the function "Do_Return_Option":
  99. ###
  100. ###   void Do_Return_Option (Type,value)
  101. ###   SHELLTYPE Type;
  102. ###   char *value;
  103. ###
  104. ### with (I know that there should be no problem with the original code,
  105. ### but MrC doesn't! Maybe it is a definition in a Apple include file?):
  106. ###
  107. ###   void Do_Return_Option (SHELLTYPE Type,char *value)
  108. ###
  109. ### ---------------------------
  110. ### 
  111. ### In "POVRAY.C"
  112. ###
  113. ### Replace the definition of the function "pov_shellout":
  114. ###
  115. ###   SHELLRET pov_shellout (Type)
  116. ###   SHELLTYPE Type;
  117. ###
  118. ### with (I know that there should be no problem with the original code,
  119. ### but MrC doesn't! Maybe it is a definition in a Apple include file?):
  120. ###
  121. ###   SHELLRET pov_shellout (SHELLTYPE Type)
  122. ###
  123. ### You cannot use this code (the E.T.O. 22 libraries seem not to have
  124. ### a "getcwd" function and PPCLink will fail (of course):
  125. ###
  126. ###   if (strlen (opts.Output_Path) == 0)
  127. ###   {
  128. ###     getcwd (opts.Output_Path, sizeof (opts.Output_Path) - 1) ;
  129. ###     /* on some systems (MacOS) getcwd adds the path separator on the end */
  130. ###     /* so only add it if it isn't already there...  [esp]                */
  131. ###     if (opts.Output_Path[strlen(opts.Output_Path)-1] != FILENAME_SEPARATOR)
  132. ###         strcat (opts.Output_Path, separator_string) ;
  133. ###   }
  134. ###
  135. ### Disable it (with comments):
  136. ###
  137. ### /*
  138. ###   if (strlen (opts.Output_Path) == 0)
  139. ###   {
  140. ###     getcwd (opts.Output_Path, sizeof (opts.Output_Path) - 1) ; */
  141. ###     /* on some systems (MacOS) getcwd adds the path separator on the end */
  142. ###     /* so only add it if it isn't already there...  [esp]                */
  143. ### /*  if (opts.Output_Path[strlen(opts.Output_Path)-1] != FILENAME_SEPARATOR)
  144. ###         strcat (opts.Output_Path, separator_string) ;
  145. ###   } */
  146. ###
  147. ### ---------------------------
  148. ###
  149. ### In "TOKENIZE.C"
  150. ###
  151. ### Replace the definition of the function "Skip_Tokens":
  152. ###
  153. ###   static void Skip_Tokens(cond)
  154. ###   COND_TYPE cond;
  155. ###
  156. ### with (I know that there should be no problem with the original code,
  157. ### but MrC doesn't! Maybe it is a definition in a Apple include file?):
  158. ###
  159. ###   static void Skip_Tokens(COND_TYPE cond)
  160. ###
  161. ### ---------------------------
  162. ###
  163. ### In "WARPS.H"
  164. ###
  165. ### Add this include file:
  166. #include <FRAME.H>
  167. ###
  168. ### ---------------------------
  169. ###
  170. ### In "USERIO.H"
  171. ###
  172. ### Add this include file:
  173. #include <FRAME.H>
  174. ###
  175. ### ---------------------------
  176. ### 
  177. ### In ":LIBPNG:PNG.H"
  178. ###
  179. ### WARNING!!! I have not tested if PNG-files can be used without
  180. ### "PNG_PROGRESSIVE_READ_SUPPORTED" because I don't use them.
  181. ###
  182. ### Add this definition at the top:
  183. #undef PNG_PROGRESSIVE_READ_SUPPORTED
  184. ###
  185. ### Add this member to the structure definition of "png_struct_def":
  186. ### "FILE *fp;"
  187. ###
  188. ### ---------------------------
  189. ### 
  190. ### In ":LIBPNG:PNGIO.C"
  191. ###
  192. ### WARNING!!! I have not tested if PNG-files can be used without
  193. ### "PNG_PROGRESSIVE_READ_SUPPORTED" because I don't use them.
  194. ###
  195. ### Add this definition after the line "#include "png.h" " (near the top!):
  196. #undef PNG_PROGRESSIVE_READ_SUPPORTED
  197. ###
  198. ### ---------------------------
  199. ### 
  200. ### In ":LIBPNG:pngconf.h"
  201. ###
  202. ### Replace:
  203. #include <sys/types.h>
  204. ### with:
  205. #include <types.h>
  206. ###
  207. ### Replace:
  208. #if defined(__MWERKS__) ||defined(applec) ||defined(THINK_C) ||defined(__SC__)
  209. ### with:
  210. #if defined(__MWERKS__) ||defined(applec) ||defined(THINK_C) ||defined(__SC__) ||defined(__MRC__)
  211. ###
  212. ### ---------------------------
  213. ###
  214. ### 
  215. ### End of modifications.
  216. ###
  217.  
  218. ######################################################################################
  219. #
  220. # The real makefile starts here.
  221. #
  222. ######################################################################################
  223.  
  224. MAKEFILE     = POV-Ray.make
  225. •MondoBuild• = # Make blank to avoid rebuilds when makefile is modified
  226. PovRayMacDir = :MacSource:
  227. PovRayDir    = :SOURCE:
  228. Sym•PPC      =
  229.  
  230. # -opt speed,unroll   new in MrC 2.0, unrolling is off by default, not on as in MrC 1.x
  231. PPCCOptions =  {Sym•PPC} -i ":SOURCE:LIBPNG:" ∂
  232.         -i ":SOURCE:ZLIB:" ∂
  233.         -i ":SOURCE:" ∂
  234.         -i ":MacSource:TE32K:" ∂
  235.         -i ":MacSource:" ∂
  236.         -opt speed,unroll ∂
  237.         -align power ∂
  238.         -target 604 ∂
  239.         -ldsize 64 ∂
  240.         -maf on ∂
  241.         -sym off ∂
  242.         -typecheck strict ∂
  243.         -w off
  244. Objects•PPC  = ∂
  245.         "{PovRayMacDir}UndoRedoSystem.c.x" ∂
  246.         "{PovRayMacDir}AboutBox.c.x" ∂
  247.         "{PovRayMacDir}aeAppHdlr.c.x" ∂
  248.         "{PovRayMacDir}AEUtils.c.x" ∂
  249.         "{PovRayMacDir}Animate.c.x" ∂
  250.         "{PovRayMacDir}AppPrefs.c.x" ∂
  251.         "{PovRayMacDir}ArgvTrix.c.x" ∂
  252.         "{PovRayMacDir}CursorUtils.c.x" ∂
  253.         "{PovRayMacDir}DialogUtils.c.x" ∂
  254.         "{PovRayMacDir}FilePrefs.c.x" ∂
  255.         "{PovRayMacDir}FileQueue.c.x" ∂
  256.         "{PovRayMacDir}ImageWindow.c.x" ∂
  257.         "{PovRayMacDir}LnkLst.c.x" ∂
  258.         "{PovRayMacDir}MemAlloc.c.x" ∂
  259.         "{PovRayMacDir}Pov.c.x" ∂
  260.         "{PovRayMacDir}povtcpch.c.x" ∂
  261.         "{PovRayMacDir}PrePost.c.x" ∂
  262.         "{PovRayMacDir}Printf2Window.c.x" ∂
  263.         "{PovRayMacDir}Profiling.c.x" ∂
  264.         "{PovRayMacDir}ProgressDialog.c.x" ∂
  265.         "{PovRayMacDir}SaveCmpPict.c.x" ∂
  266.         "{PovRayMacDir}ScreenUtils.c.x" ∂
  267.         "{PovRayMacDir}SplashScreen.c.x" ∂
  268.         "{PovRayMacDir}stdfolder.c.x" ∂
  269.         "{PovRayMacDir}sysMacPict.c.x" ∂
  270.         "{PovRayMacDir}TemplateMenu.c.x" ∂
  271.         "{PovRayMacDir}TextEditor.c.x" ∂
  272.         "{PovRayMacDir}VolsPaths.c.x" ∂
  273.         "{PovRayMacDir}zsupport.c.x" ∂
  274.         "{PovRayMacDir}TE32K:TE32K.c.x" ∂
  275.         "{PovRayDir}ZLib:ADLER32.C.x" ∂
  276.         "{PovRayDir}ZLib:COMPRESS.C.x" ∂
  277.         "{PovRayDir}ZLib:CRC32.C.x" ∂
  278.         "{PovRayDir}ZLib:DEFLATE.C.x" ∂
  279.         "{PovRayDir}ZLib:GZIO.C.x" ∂
  280.         "{PovRayDir}ZLib:INFBLOCK.C.x" ∂
  281.         "{PovRayDir}ZLib:INFCODES.C.x" ∂
  282.         "{PovRayDir}ZLib:INFFAST.C.x" ∂
  283.         "{PovRayDir}ZLib:INFLATE.C.x" ∂
  284.         "{PovRayDir}ZLib:INFTREES.C.x" ∂
  285.         "{PovRayDir}ZLib:INFUTIL.C.x" ∂
  286.         "{PovRayDir}ZLib:TREES.C.x" ∂
  287.         "{PovRayDir}ZLib:UNCOMPR.C.x" ∂
  288.         "{PovRayDir}ZLib:ZUTIL.C.x" ∂
  289.         "{PovRayDir}LIBPNG:PNG.C.x" ∂
  290.         "{PovRayDir}LIBPNG:PNGERROR.C.x" ∂
  291.         "{PovRayDir}LIBPNG:PNGMEM.C.x" ∂
  292.         "{PovRayDir}LIBPNG:PNGRCB.C.x" ∂
  293.         "{PovRayDir}LIBPNG:PNGREAD.C.x" ∂
  294.         "{PovRayDir}LIBPNG:PNGRTRAN.C.x" ∂
  295.         "{PovRayDir}LIBPNG:PNGRUTIL.C.x" ∂
  296.         "{PovRayDir}LIBPNG:PNGTRANS.C.x" ∂
  297.         "{PovRayDir}LIBPNG:PNGWRITE.C.x" ∂
  298.         "{PovRayDir}LIBPNG:PNGWTRAN.C.x" ∂
  299.         "{PovRayDir}LIBPNG:PNGWUTIL.C.x" ∂
  300.         "{PovRayDir}LIBPNG:PNGIO.C.x" ∂
  301.         "{PovRayDir}ATMOSPH.C.x" ∂
  302.         "{PovRayDir}BBOX.C.x" ∂
  303.         "{PovRayDir}BCYL.C.x" ∂
  304.         "{PovRayDir}BEZIER.C.x" ∂
  305.         "{PovRayDir}BLOB.C.x" ∂
  306.         "{PovRayDir}BOXES.C.x" ∂
  307.         "{PovRayDir}BSPHERE.C.x" ∂
  308.         "{PovRayDir}CAMERA.C.x" ∂
  309.         "{PovRayDir}CHI2.C.x" ∂
  310.         "{PovRayDir}COLOUR.C.x" ∂
  311.         "{PovRayDir}CONES.C.x" ∂
  312.         "{PovRayDir}CSG.C.x" ∂
  313.         "{PovRayDir}DISCS.C.x" ∂
  314.         "{PovRayDir}EXPRESS.C.x" ∂
  315.         "{PovRayDir}FRACTAL.C.x" ∂
  316.         "{PovRayDir}GIF.C.x" ∂
  317.         "{PovRayDir}GIFDECOD.C.x" ∂
  318.         "{PovRayDir}HALOS.C.x" ∂
  319.         "{PovRayDir}HCMPLX.C.x" ∂
  320.         "{PovRayDir}HFIELD.C.x" ∂
  321.         "{PovRayDir}IFF.C.x" ∂
  322.         "{PovRayDir}IMAGE.C.x" ∂
  323.         "{PovRayDir}LATHE.C.x" ∂
  324.         "{PovRayDir}LBUFFER.C.x" ∂
  325.         "{PovRayDir}LIGHTING.C.x" ∂
  326.         "{PovRayDir}MATRICES.C.x" ∂
  327.         "{PovRayDir}MEM.C.x" ∂
  328.         "{PovRayDir}MESH.C.x" ∂
  329.         "{PovRayDir}NORMAL.C.x" ∂
  330.         "{PovRayDir}OBJECTS.C.x" ∂
  331.         "{PovRayDir}OCTREE.C.x" ∂
  332.         "{PovRayDir}OPTIN.C.x" ∂
  333.         "{PovRayDir}OPTOUT.C.x" ∂
  334.         "{PovRayDir}PARSE.C.x" ∂
  335.         "{PovRayDir}PARSTXTR.C.x" ∂
  336.         "{PovRayDir}PATTERN.C.x" ∂
  337.         "{PovRayDir}PGM.C.x" ∂
  338.         "{PovRayDir}PIGMENT.C.x" ∂
  339.         "{PovRayDir}PLANES.C.x" ∂
  340.         "{PovRayDir}PNG_POV.C.x" ∂
  341.         "{PovRayDir}POINT.C.x" ∂
  342.         "{PovRayDir}POLY.C.x" ∂
  343.         "{PovRayDir}POLYGON.C.x" ∂
  344.         "{PovRayDir}POLYSOLV.C.x" ∂
  345.         "{PovRayDir}POVRAY.C.x" ∂
  346.         "{PovRayDir}PPM.C.x" ∂
  347.         "{PovRayDir}PRISM.C.x" ∂
  348.         "{PovRayDir}QUADRICS.C.x" ∂
  349.         "{PovRayDir}QUATERN.C.x" ∂
  350.         "{PovRayDir}RADIOSIT.C.x" ∂
  351.         "{PovRayDir}RAD_DATA.C.x" ∂
  352.         "{PovRayDir}RAY.C.x" ∂
  353.         "{PovRayDir}RENDER.C.x" ∂
  354.         "{PovRayDir}SOR.C.x" ∂
  355.         "{PovRayDir}SPHERES.C.x" ∂
  356.         "{PovRayDir}SUPER.C.x" ∂
  357.         "{PovRayDir}TARGA.C.x" ∂
  358.         "{PovRayDir}TEXTURE.C.x" ∂
  359.         "{PovRayDir}TOKENIZE.C.x" ∂
  360.         "{PovRayDir}TORUS.C.x" ∂
  361.         "{PovRayDir}TRIANGLE.C.x" ∂
  362.         "{PovRayDir}TRUETYPE.C.x" ∂
  363.         "{PovRayDir}TXTTEST.C.x" ∂
  364.         "{PovRayDir}USERIO.C.x" ∂
  365.         "{PovRayDir}VBUFFER.C.x" ∂
  366.         "{PovRayDir}VLBUFFER.C.x" ∂
  367.         "{PovRayDir}WARPS.C.x"
  368.  
  369. # -codeorder staticcall   # is not faster than -codeorder reference (tested with BLOPLOOP.POV)
  370. # -dead on   # "on" is remove dead code, "off" is don't remove it!
  371. # -d   # I hate warnings
  372. # "{PPCLibraries}libmoto"  # Uncommenting this will add the fast Motorola FPU-Library (about 3% - 5% faster)
  373.  
  374. POV-Ray ƒƒ {•MondoBuild•} {Objects•PPC}
  375.     PPCLink ∂
  376.         -o {Targ} {Sym•PPC} ∂
  377.         {Objects•PPC} ∂
  378.         -t 'APPL' ∂
  379.         -c '????' ∂
  380.         -codeorder reference ∂
  381.         -dead on ∂
  382.         -d ∂
  383. #        "{PPCLibraries}libmoto" ∂
  384.         "{SharedLibraries}InterfaceLib" ∂
  385.         "{SharedLibraries}StdCLib" ∂
  386.         "{SharedLibraries}MathLib" ∂
  387.         "{SharedLibraries}DragLib" ∂
  388.         "{SharedLibraries}ObjectSupportLib" ∂
  389.         "{SharedLibraries}QuickTimeLib" ∂
  390.         "{SharedLibraries}SoundLib" ∂
  391.         "{SharedLibraries}VideoServicesLib" ∂
  392.         "{PPCLibraries}StdCRuntime.o" ∂
  393.         "{PPCLibraries}PPCCRuntime.o" ∂
  394.         "{PPCLibraries}PPCToolLibs.o"
  395.  
  396.  
  397.  
  398. "{PovRayMacDir}UndoRedoSystem.c.x" ƒ {•MondoBuild•} {PovRayMacDir}UndoRedoSystem.c
  399.     {PPCC} "{PovRayMacDir}UndoRedoSystem.c" -o {Targ} {PPCCOptions}
  400.  
  401. "{PovRayMacDir}AboutBox.c.x" ƒ {•MondoBuild•} {PovRayMacDir}AboutBox.c
  402.     {PPCC} "{PovRayMacDir}AboutBox.c" -o {Targ} {PPCCOptions}
  403.  
  404. "{PovRayMacDir}aeAppHdlr.c.x" ƒ {•MondoBuild•} {PovRayMacDir}aeAppHdlr.c
  405.     {PPCC} "{PovRayMacDir}aeAppHdlr.c" -o {Targ} {PPCCOptions}
  406.  
  407. "{PovRayMacDir}AEUtils.c.x" ƒ {•MondoBuild•} {PovRayMacDir}AEUtils.c
  408.     {PPCC} "{PovRayMacDir}AEUtils.c" -o {Targ} {PPCCOptions}
  409.  
  410. "{PovRayMacDir}Animate.c.x" ƒ {•MondoBuild•} {PovRayMacDir}Animate.c
  411.     {PPCC} "{PovRayMacDir}Animate.c" -o {Targ} {PPCCOptions}
  412.  
  413. "{PovRayMacDir}AppPrefs.c.x" ƒ {•MondoBuild•} {PovRayMacDir}AppPrefs.c
  414.     {PPCC} "{PovRayMacDir}AppPrefs.c" -o {Targ} {PPCCOptions}
  415.  
  416. "{PovRayMacDir}ArgvTrix.c.x" ƒ {•MondoBuild•} {PovRayMacDir}ArgvTrix.c
  417.     {PPCC} "{PovRayMacDir}ArgvTrix.c" -o {Targ} {PPCCOptions}
  418.  
  419. "{PovRayMacDir}CursorUtils.c.x" ƒ {•MondoBuild•} {PovRayMacDir}CursorUtils.c
  420.     {PPCC} "{PovRayMacDir}CursorUtils.c" -o {Targ} {PPCCOptions}
  421.  
  422. "{PovRayMacDir}DialogUtils.c.x" ƒ {•MondoBuild•} {PovRayMacDir}DialogUtils.c
  423.     {PPCC} "{PovRayMacDir}DialogUtils.c" -o {Targ} {PPCCOptions}
  424.  
  425. "{PovRayMacDir}FilePrefs.c.x" ƒ {•MondoBuild•} {PovRayMacDir}FilePrefs.c
  426.     {PPCC} "{PovRayMacDir}FilePrefs.c" -o {Targ} {PPCCOptions}
  427.  
  428. "{PovRayMacDir}FileQueue.c.x" ƒ {•MondoBuild•} {PovRayMacDir}FileQueue.c
  429.     {PPCC} "{PovRayMacDir}FileQueue.c" -o {Targ} {PPCCOptions}
  430.  
  431. "{PovRayMacDir}ImageWindow.c.x" ƒ {•MondoBuild•} {PovRayMacDir}ImageWindow.c
  432.     {PPCC} "{PovRayMacDir}ImageWindow.c" -o {Targ} {PPCCOptions}
  433.  
  434. "{PovRayMacDir}LnkLst.c.x" ƒ {•MondoBuild•} {PovRayMacDir}LnkLst.c
  435.     {PPCC} "{PovRayMacDir}LnkLst.c" -o {Targ} {PPCCOptions}
  436.  
  437. "{PovRayMacDir}MemAlloc.c.x" ƒ {•MondoBuild•} {PovRayMacDir}MemAlloc.c
  438.     {PPCC} "{PovRayMacDir}MemAlloc.c" -o {Targ} {PPCCOptions}
  439.  
  440. "{PovRayMacDir}Pov.c.x" ƒ {•MondoBuild•} {PovRayMacDir}Pov.c
  441.     {PPCC} "{PovRayMacDir}Pov.c" -o {Targ} {PPCCOptions}
  442.  
  443. "{PovRayMacDir}povtcpch.c.x" ƒ {•MondoBuild•} {PovRayMacDir}povtcpch.c
  444.     {PPCC} "{PovRayMacDir}povtcpch.c" -o {Targ} {PPCCOptions}
  445.  
  446. "{PovRayMacDir}PrePost.c.x" ƒ {•MondoBuild•} {PovRayMacDir}PrePost.c
  447.     {PPCC} "{PovRayMacDir}PrePost.c" -o {Targ} {PPCCOptions}
  448.  
  449. "{PovRayMacDir}Printf2Window.c.x" ƒ {•MondoBuild•} {PovRayMacDir}Printf2Window.c
  450.     {PPCC} "{PovRayMacDir}Printf2Window.c" -o {Targ} {PPCCOptions}
  451.  
  452. "{PovRayMacDir}Profiling.c.x" ƒ {•MondoBuild•} {PovRayMacDir}Profiling.c
  453.     {PPCC} "{PovRayMacDir}Profiling.c" -o {Targ} {PPCCOptions}
  454.  
  455. "{PovRayMacDir}ProgressDialog.c.x" ƒ {•MondoBuild•} {PovRayMacDir}ProgressDialog.c
  456.     {PPCC} "{PovRayMacDir}ProgressDialog.c" -o {Targ} {PPCCOptions}
  457.  
  458. "{PovRayMacDir}SaveCmpPict.c.x" ƒ {•MondoBuild•} {PovRayMacDir}SaveCmpPict.c
  459.     {PPCC} "{PovRayMacDir}SaveCmpPict.c" -o {Targ} {PPCCOptions}
  460.  
  461. "{PovRayMacDir}ScreenUtils.c.x" ƒ {•MondoBuild•} {PovRayMacDir}ScreenUtils.c
  462.     {PPCC} "{PovRayMacDir}ScreenUtils.c" -o {Targ} {PPCCOptions}
  463.  
  464. "{PovRayMacDir}SplashScreen.c.x" ƒ {•MondoBuild•} {PovRayMacDir}SplashScreen.c
  465.     {PPCC} "{PovRayMacDir}SplashScreen.c" -o {Targ} {PPCCOptions}
  466.  
  467. "{PovRayMacDir}stdfolder.c.x" ƒ {•MondoBuild•} {PovRayMacDir}stdfolder.c
  468.     {PPCC} "{PovRayMacDir}stdfolder.c" -o {Targ} {PPCCOptions}
  469.  
  470. "{PovRayMacDir}sysMacPict.c.x" ƒ {•MondoBuild•} {PovRayMacDir}sysMacPict.c
  471.     {PPCC} "{PovRayMacDir}sysMacPict.c" -o {Targ} {PPCCOptions}
  472.  
  473. "{PovRayMacDir}TemplateMenu.c.x" ƒ {•MondoBuild•} {PovRayMacDir}TemplateMenu.c
  474.     {PPCC} "{PovRayMacDir}TemplateMenu.c" -o {Targ} {PPCCOptions}
  475.  
  476. "{PovRayMacDir}TextEditor.c.x" ƒ {•MondoBuild•} {PovRayMacDir}TextEditor.c
  477.     {PPCC} "{PovRayMacDir}TextEditor.c" -o {Targ} {PPCCOptions}
  478.  
  479. "{PovRayMacDir}VolsPaths.c.x" ƒ {•MondoBuild•} {PovRayMacDir}VolsPaths.c
  480.     {PPCC} "{PovRayMacDir}VolsPaths.c" -o {Targ} {PPCCOptions}
  481.  
  482. "{PovRayMacDir}zsupport.c.x" ƒ {•MondoBuild•} {PovRayMacDir}zsupport.c
  483.     {PPCC} "{PovRayMacDir}zsupport.c" -o {Targ} {PPCCOptions}
  484.  
  485. "{PovRayMacDir}TE32K.c.x" ƒ {•MondoBuild•} {PovRayMacDir}TE32K.c
  486.     {PPCC} "{PovRayMacDir}TE32K.c" -o {Targ} {PPCCOptions}
  487.  
  488. "{PovRayDir}ATMOSPH.c.x" ƒ {•MondoBuild•} {PovRayDir}ATMOSPH.c
  489.     {PPCC} "{PovRayDir}ATMOSPH.c" -o {Targ} {PPCCOptions}
  490.  
  491. "{PovRayDir}ZLib:COMPRESS.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:COMPRESS.c
  492.     {PPCC} "{PovRayDir}ZLib:COMPRESS.c" -o {Targ} {PPCCOptions}
  493.  
  494. "{PovRayDir}ZLib:CRC32.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:CRC32.c
  495.     {PPCC} "{PovRayDir}ZLib:CRC32.c" -o {Targ} {PPCCOptions}
  496.  
  497. "{PovRayDir}ZLib:DEFLATE.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:DEFLATE.c
  498.     {PPCC} "{PovRayDir}ZLib:DEFLATE.c" -o {Targ} {PPCCOptions}
  499.  
  500. "{PovRayDir}ZLib:GZIO.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:GZIO.c
  501.     {PPCC} "{PovRayDir}ZLib:GZIO.c" -o {Targ} {PPCCOptions}
  502.  
  503. "{PovRayDir}ZLib:INFBLOCK.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFBLOCK.c
  504.     {PPCC} "{PovRayDir}ZLib:INFBLOCK.c" -o {Targ} {PPCCOptions}
  505.  
  506. "{PovRayDir}ZLib:INFCODES.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFCODES.c
  507.     {PPCC} "{PovRayDir}ZLib:INFCODES.c" -o {Targ} {PPCCOptions}
  508.  
  509. "{PovRayDir}ZLib:INFFAST.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFFAST.c
  510.     {PPCC} "{PovRayDir}ZLib:INFFAST.c" -o {Targ} {PPCCOptions}
  511.  
  512. "{PovRayDir}ZLib:INFLATE.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFLATE.c
  513.     {PPCC} "{PovRayDir}ZLib:INFLATE.c" -o {Targ} {PPCCOptions}
  514.  
  515. "{PovRayDir}ZLib:INFTREES.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFTREES.c
  516.     {PPCC} "{PovRayDir}ZLib:INFTREES.c" -o {Targ} {PPCCOptions}
  517.  
  518. "{PovRayDir}ZLib:INFUTIL.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFUTIL.c
  519.     {PPCC} "{PovRayDir}ZLib:INFUTIL.c" -o {Targ} {PPCCOptions}
  520.  
  521. "{PovRayDir}ZLib:TREES.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:TREES.c
  522.     {PPCC} "{PovRayDir}ZLib:TREES.c" -o {Targ} {PPCCOptions}
  523.  
  524. "{PovRayDir}ZLib:UNCOMPR.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:UNCOMPR.c
  525.     {PPCC} "{PovRayDir}ZLib:UNCOMPR.c" -o {Targ} {PPCCOptions}
  526.  
  527. "{PovRayDir}ZLib:ZUTIL.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:ZUTIL.c
  528.     {PPCC} "{PovRayDir}ZLib:ZUTIL.c" -o {Targ} {PPCCOptions}
  529.  
  530. "{PovRayDir}LIBPNG:PNG.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNG.c
  531.     {PPCC} "{PovRayDir}LIBPNG:PNG.c" -o {Targ} {PPCCOptions}
  532.  
  533. "{PovRayDir}LIBPNG:PNGERROR.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGERROR.c
  534.     {PPCC} "{PovRayDir}LIBPNG:PNGERROR.c" -o {Targ} {PPCCOptions}
  535.  
  536. "{PovRayDir}LIBPNG:PNGMEM.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGMEM.c
  537.     {PPCC} "{PovRayDir}LIBPNG:PNGMEM.c" -o {Targ} {PPCCOptions}
  538.  
  539. "{PovRayDir}LIBPNG:PNGRCB.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGRCB.c
  540.     {PPCC} "{PovRayDir}LIBPNG:PNGRCB.c" -o {Targ} {PPCCOptions}
  541.  
  542. "{PovRayDir}LIBPNG:PNGREAD.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGREAD.c
  543.     {PPCC} "{PovRayDir}LIBPNG:PNGREAD.c" -o {Targ} {PPCCOptions}
  544.  
  545. "{PovRayDir}LIBPNG:PNGRTRAN.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGRTRAN.c
  546.     {PPCC} "{PovRayDir}LIBPNG:PNGRTRAN.c" -o {Targ} {PPCCOptions}
  547.  
  548. "{PovRayDir}LIBPNG:PNGRUTIL.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGRUTIL.c
  549.     {PPCC} "{PovRayDir}LIBPNG:PNGRUTIL.c" -o {Targ} {PPCCOptions}
  550.  
  551. "{PovRayDir}LIBPNG:PNGTRANS.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGTRANS.c
  552.     {PPCC} "{PovRayDir}LIBPNG:PNGTRANS.c" -o {Targ} {PPCCOptions}
  553.  
  554. "{PovRayDir}LIBPNG:PNGWRITE.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGWRITE.c
  555.     {PPCC} "{PovRayDir}LIBPNG:PNGWRITE.c" -o {Targ} {PPCCOptions}
  556.  
  557. "{PovRayDir}LIBPNG:PNGWTRAN.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGWTRAN.c
  558.     {PPCC} "{PovRayDir}LIBPNG:PNGWTRAN.c" -o {Targ} {PPCCOptions}
  559.  
  560. "{PovRayDir}LIBPNG:PNGWUTIL.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGWUTIL.c
  561.     {PPCC} "{PovRayDir}LIBPNG:PNGWUTIL.c" -o {Targ} {PPCCOptions}
  562.  
  563. "{PovRayDir}LIBPNG:PNGIO.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGIO.c
  564.     {PPCC} "{PovRayDir}LIBPNG:PNGIO.c" -o {Targ} {PPCCOptions}
  565.  
  566. "{PovRayDir}BBOX.c.x" ƒ {•MondoBuild•} {PovRayDir}BBOX.c
  567.     {PPCC} "{PovRayDir}BBOX.c" -o {Targ} {PPCCOptions}
  568.  
  569. "{PovRayDir}BCYL.c.x" ƒ {•MondoBuild•} {PovRayDir}BCYL.c
  570.     {PPCC} "{PovRayDir}BCYL.c" -o {Targ} {PPCCOptions}
  571.  
  572. "{PovRayDir}BEZIER.c.x" ƒ {•MondoBuild•} {PovRayDir}BEZIER.c
  573.     {PPCC} "{PovRayDir}BEZIER.c" -o {Targ} {PPCCOptions}
  574.  
  575. "{PovRayDir}BLOB.c.x" ƒ {•MondoBuild•} {PovRayDir}BLOB.c
  576.     {PPCC} "{PovRayDir}BLOB.c" -o {Targ} {PPCCOptions}
  577.  
  578. "{PovRayDir}BOXES.c.x" ƒ {•MondoBuild•} {PovRayDir}BOXES.c
  579.     {PPCC} "{PovRayDir}BOXES.c" -o {Targ} {PPCCOptions}
  580.  
  581. "{PovRayDir}BSPHERE.c.x" ƒ {•MondoBuild•} {PovRayDir}BSPHERE.c
  582.     {PPCC} "{PovRayDir}BSPHERE.c" -o {Targ} {PPCCOptions}
  583.  
  584. "{PovRayDir}CAMERA.c.x" ƒ {•MondoBuild•} {PovRayDir}CAMERA.c
  585.     {PPCC} "{PovRayDir}CAMERA.c" -o {Targ} {PPCCOptions}
  586.  
  587. "{PovRayDir}CHI2.c.x" ƒ {•MondoBuild•} {PovRayDir}CHI2.c
  588.     {PPCC} "{PovRayDir}CHI2.c" -o {Targ} {PPCCOptions}
  589.  
  590. "{PovRayDir}COLOUR.c.x" ƒ {•MondoBuild•} {PovRayDir}COLOUR.c
  591.     {PPCC} "{PovRayDir}COLOUR.c" -o {Targ} {PPCCOptions}
  592.  
  593. "{PovRayDir}CONES.c.x" ƒ {•MondoBuild•} {PovRayDir}CONES.c
  594.     {PPCC} "{PovRayDir}CONES.c" -o {Targ} {PPCCOptions}
  595.  
  596. "{PovRayDir}CSG.c.x" ƒ {•MondoBuild•} {PovRayDir}CSG.c
  597.     {PPCC} "{PovRayDir}CSG.c" -o {Targ} {PPCCOptions}
  598.  
  599. "{PovRayDir}DISCS.c.x" ƒ {•MondoBuild•} {PovRayDir}DISCS.c
  600.     {PPCC} "{PovRayDir}DISCS.c" -o {Targ} {PPCCOptions}
  601.  
  602. "{PovRayDir}EXPRESS.c.x" ƒ {•MondoBuild•} {PovRayDir}EXPRESS.c
  603.     {PPCC} "{PovRayDir}EXPRESS.c" -o {Targ} {PPCCOptions}
  604.  
  605. "{PovRayDir}FRACTAL.c.x" ƒ {•MondoBuild•} {PovRayDir}FRACTAL.c
  606.     {PPCC} "{PovRayDir}FRACTAL.c" -o {Targ} {PPCCOptions}
  607.  
  608. "{PovRayDir}GIF.c.x" ƒ {•MondoBuild•} {PovRayDir}GIF.c
  609.     {PPCC} "{PovRayDir}GIF.c" -o {Targ} {PPCCOptions}
  610.  
  611. "{PovRayDir}GIFDECOD.c.x" ƒ {•MondoBuild•} {PovRayDir}GIFDECOD.c
  612.     {PPCC} "{PovRayDir}GIFDECOD.c" -o {Targ} {PPCCOptions}
  613.  
  614. "{PovRayDir}HALOS.c.x" ƒ {•MondoBuild•} {PovRayDir}HALOS.c
  615.     {PPCC} "{PovRayDir}HALOS.c" -o {Targ} {PPCCOptions}
  616.  
  617. "{PovRayDir}HCMPLX.c.x" ƒ {•MondoBuild•} {PovRayDir}HCMPLX.c
  618.     {PPCC} "{PovRayDir}HCMPLX.c" -o {Targ} {PPCCOptions}
  619.  
  620. "{PovRayDir}HFIELD.c.x" ƒ {•MondoBuild•} {PovRayDir}HFIELD.c
  621.     {PPCC} "{PovRayDir}HFIELD.c" -o {Targ} {PPCCOptions}
  622.  
  623. "{PovRayDir}IFF.c.x" ƒ {•MondoBuild•} {PovRayDir}IFF.c
  624.     {PPCC} "{PovRayDir}IFF.c" -o {Targ} {PPCCOptions}
  625.  
  626. "{PovRayDir}IMAGE.c.x" ƒ {•MondoBuild•} {PovRayDir}IMAGE.c
  627.     {PPCC} "{PovRayDir}IMAGE.c" -o {Targ} {PPCCOptions}
  628.  
  629. "{PovRayDir}LATHE.c.x" ƒ {•MondoBuild•} {PovRayDir}LATHE.c
  630.     {PPCC} "{PovRayDir}LATHE.c" -o {Targ} {PPCCOptions}
  631.  
  632. "{PovRayDir}LBUFFER.c.x" ƒ {•MondoBuild•} {PovRayDir}LBUFFER.c
  633.     {PPCC} "{PovRayDir}LBUFFER.c" -o {Targ} {PPCCOptions}
  634.  
  635. "{PovRayDir}LIGHTING.c.x" ƒ {•MondoBuild•} {PovRayDir}LIGHTING.c
  636.     {PPCC} "{PovRayDir}LIGHTING.c" -o {Targ} {PPCCOptions}
  637.  
  638. "{PovRayDir}MATRICES.c.x" ƒ {•MondoBuild•} {PovRayDir}MATRICES.c
  639.     {PPCC} "{PovRayDir}MATRICES.c" -o {Targ} {PPCCOptions}
  640.  
  641. "{PovRayDir}MEM.c.x" ƒ {•MondoBuild•} {PovRayDir}MEM.c
  642.     {PPCC} "{PovRayDir}MEM.c" -o {Targ} {PPCCOptions}
  643.  
  644. "{PovRayDir}MESH.c.x" ƒ {•MondoBuild•} {PovRayDir}MESH.c
  645.     {PPCC} "{PovRayDir}MESH.c" -o {Targ} {PPCCOptions}
  646.  
  647. "{PovRayDir}NORMAL.c.x" ƒ {•MondoBuild•} {PovRayDir}NORMAL.c
  648.     {PPCC} "{PovRayDir}NORMAL.c" -o {Targ} {PPCCOptions}
  649.  
  650. "{PovRayDir}OBJECTS.c.x" ƒ {•MondoBuild•} {PovRayDir}OBJECTS.c
  651.     {PPCC} "{PovRayDir}OBJECTS.c" -o {Targ} {PPCCOptions}
  652.  
  653. "{PovRayDir}OCTREE.c.x" ƒ {•MondoBuild•} {PovRayDir}OCTREE.c
  654.     {PPCC} "{PovRayDir}OCTREE.c" -o {Targ} {PPCCOptions}
  655.  
  656. "{PovRayDir}OPTIN.c.x" ƒ {•MondoBuild•} {PovRayDir}OPTIN.c
  657.     {PPCC} "{PovRayDir}OPTIN.c" -o {Targ} {PPCCOptions}
  658.  
  659. "{PovRayDir}OPTOUT.c.x" ƒ {•MondoBuild•} {PovRayDir}OPTOUT.c
  660.     {PPCC} "{PovRayDir}OPTOUT.c" -o {Targ} {PPCCOptions}
  661.  
  662. "{PovRayDir}PARSE.c.x" ƒ {•MondoBuild•} {PovRayDir}PARSE.c
  663.     {PPCC} "{PovRayDir}PARSE.c" -o {Targ} {PPCCOptions}
  664.  
  665. "{PovRayDir}PARSTXTR.c.x" ƒ {•MondoBuild•} {PovRayDir}PARSTXTR.c
  666.     {PPCC} "{PovRayDir}PARSTXTR.c" -o {Targ} {PPCCOptions}
  667.  
  668. "{PovRayDir}PATTERN.c.x" ƒ {•MondoBuild•} {PovRayDir}PATTERN.c
  669.     {PPCC} "{PovRayDir}PATTERN.c" -o {Targ} {PPCCOptions}
  670.  
  671. "{PovRayDir}PGM.c.x" ƒ {•MondoBuild•} {PovRayDir}PGM.c
  672.     {PPCC} "{PovRayDir}PGM.c" -o {Targ} {PPCCOptions}
  673.  
  674. "{PovRayDir}PIGMENT.c.x" ƒ {•MondoBuild•} {PovRayDir}PIGMENT.c
  675.     {PPCC} "{PovRayDir}PIGMENT.c" -o {Targ} {PPCCOptions}
  676.  
  677. "{PovRayDir}PLANES.c.x" ƒ {•MondoBuild•} {PovRayDir}PLANES.c
  678.     {PPCC} "{PovRayDir}PLANES.c" -o {Targ} {PPCCOptions}
  679.  
  680. "{PovRayDir}PNG_POV.c.x" ƒ {•MondoBuild•} {PovRayDir}PNG_POV.c
  681.     {PPCC} "{PovRayDir}PNG_POV.c" -o {Targ} {PPCCOptions}
  682.  
  683. "{PovRayDir}POINT.c.x" ƒ {•MondoBuild•} {PovRayDir}POINT.c
  684.     {PPCC} "{PovRayDir}POINT.c" -o {Targ} {PPCCOptions}
  685.  
  686. "{PovRayDir}POLY.c.x" ƒ {•MondoBuild•} {PovRayDir}POLY.c
  687.     {PPCC} "{PovRayDir}POLY.c" -o {Targ} {PPCCOptions}
  688.  
  689. "{PovRayDir}POLYGON.c.x" ƒ {•MondoBuild•} {PovRayDir}POLYGON.c
  690.     {PPCC} "{PovRayDir}POLYGON.c" -o {Targ} {PPCCOptions}
  691.  
  692. "{PovRayDir}POLYSOLV.c.x" ƒ {•MondoBuild•} {PovRayDir}POLYSOLV.c
  693.     {PPCC} "{PovRayDir}POLYSOLV.c" -o {Targ} {PPCCOptions}
  694.  
  695. "{PovRayDir}POVRAY.c.x" ƒ {•MondoBuild•} {PovRayDir}POVRAY.c
  696.     {PPCC} "{PovRayDir}POVRAY.c" -o {Targ} {PPCCOptions}
  697.  
  698. "{PovRayDir}PPM.c.x" ƒ {•MondoBuild•} {PovRayDir}PPM.c
  699.     {PPCC} "{PovRayDir}PPM.c" -o {Targ} {PPCCOptions}
  700.  
  701. "{PovRayDir}PRISM.c.x" ƒ {•MondoBuild•} {PovRayDir}PRISM.c
  702.     {PPCC} "{PovRayDir}PRISM.c" -o {Targ} {PPCCOptions}
  703.  
  704. "{PovRayDir}QUADRICS.c.x" ƒ {•MondoBuild•} {PovRayDir}QUADRICS.c
  705.     {PPCC} "{PovRayDir}QUADRICS.c" -o {Targ} {PPCCOptions}
  706.  
  707. "{PovRayDir}QUATERN.c.x" ƒ {•MondoBuild•} {PovRayDir}QUATERN.c
  708.     {PPCC} "{PovRayDir}QUATERN.c" -o {Targ} {PPCCOptions}
  709.  
  710. "{PovRayDir}RADIOSIT.c.x" ƒ {•MondoBuild•} {PovRayDir}RADIOSIT.c
  711.     {PPCC} "{PovRayDir}RADIOSIT.c" -o {Targ} {PPCCOptions}
  712.  
  713. "{PovRayDir}RAD_DATA.c.x" ƒ {•MondoBuild•} {PovRayDir}RAD_DATA.c
  714.     {PPCC} "{PovRayDir}RAD_DATA.c" -o {Targ} {PPCCOptions}
  715.  
  716. "{PovRayDir}RAY.c.x" ƒ {•MondoBuild•} {PovRayDir}RAY.c
  717.     {PPCC} "{PovRayDir}RAY.c" -o {Targ} {PPCCOptions}
  718.  
  719. "{PovRayDir}RENDER.c.x" ƒ {•MondoBuild•} {PovRayDir}RENDER.c
  720.     {PPCC} "{PovRayDir}RENDER.c" -o {Targ} {PPCCOptions}
  721.  
  722. "{PovRayDir}SOR.c.x" ƒ {•MondoBuild•} {PovRayDir}SOR.c
  723.     {PPCC} "{PovRayDir}SOR.c" -o {Targ} {PPCCOptions}
  724.  
  725. "{PovRayDir}SPHERES.c.x" ƒ {•MondoBuild•} {PovRayDir}SPHERES.c
  726.     {PPCC} "{PovRayDir}SPHERES.c" -o {Targ} {PPCCOptions}
  727.  
  728. "{PovRayDir}SUPER.c.x" ƒ {•MondoBuild•} {PovRayDir}SUPER.c
  729.     {PPCC} "{PovRayDir}SUPER.c" -o {Targ} {PPCCOptions}
  730.  
  731. "{PovRayDir}TARGA.c.x" ƒ {•MondoBuild•} {PovRayDir}TARGA.c
  732.     {PPCC} "{PovRayDir}TARGA.c" -o {Targ} {PPCCOptions}
  733.  
  734. "{PovRayDir}TEXTURE.c.x" ƒ {•MondoBuild•} {PovRayDir}TEXTURE.c
  735.     {PPCC} "{PovRayDir}TEXTURE.c" -o {Targ} {PPCCOptions}
  736.  
  737. "{PovRayDir}TOKENIZE.c.x" ƒ {•MondoBuild•} {PovRayDir}TOKENIZE.c
  738.     {PPCC} "{PovRayDir}TOKENIZE.c" -o {Targ} {PPCCOptions}
  739.  
  740. "{PovRayDir}TORUS.c.x" ƒ {•MondoBuild•} {PovRayDir}TORUS.c
  741.     {PPCC} "{PovRayDir}TORUS.c" -o {Targ} {PPCCOptions}
  742.  
  743. "{PovRayDir}TRIANGLE.c.x" ƒ {•MondoBuild•} {PovRayDir}TRIANGLE.c
  744.     {PPCC} "{PovRayDir}TRIANGLE.c" -o {Targ} {PPCCOptions}
  745.  
  746. "{PovRayDir}TRUETYPE.c.x" ƒ {•MondoBuild•} {PovRayDir}TRUETYPE.c
  747.     {PPCC} "{PovRayDir}TRUETYPE.c" -o {Targ} {PPCCOptions}
  748.  
  749. "{PovRayDir}TXTTEST.c.x" ƒ {•MondoBuild•} {PovRayDir}TXTTEST.c
  750.     {PPCC} "{PovRayDir}TXTTEST.c" -o {Targ} {PPCCOptions}
  751.  
  752. "{PovRayDir}USERIO.c.x" ƒ {•MondoBuild•} {PovRayDir}USERIO.c
  753.     {PPCC} "{PovRayDir}USERIO.c" -o {Targ} {PPCCOptions}
  754.  
  755. "{PovRayDir}VBUFFER.c.x" ƒ {•MondoBuild•} {PovRayDir}VBUFFER.c
  756.     {PPCC} "{PovRayDir}VBUFFER.c" -o {Targ} {PPCCOptions}
  757.  
  758. "{PovRayDir}VLBUFFER.c.x" ƒ {•MondoBuild•} {PovRayDir}VLBUFFER.c
  759.     {PPCC} "{PovRayDir}VLBUFFER.c" -o {Targ} {PPCCOptions}
  760.  
  761. "{PovRayDir}WARPS.c.x" ƒ {•MondoBuild•} {PovRayDir}WARPS.c
  762.     {PPCC} "{PovRayDir}WARPS.c" -o {Targ} {PPCCOptions}
  763.